diff options
Diffstat (limited to 'src/pages/blog/[...slug].astro')
-rw-r--r-- | src/pages/blog/[...slug].astro | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro index bbf3f98..2593921 100644 --- a/src/pages/blog/[...slug].astro +++ b/src/pages/blog/[...slug].astro @@ -1,5 +1,6 @@ --- import { type CollectionEntry, getCollection } from "astro:content"; +import Comments from "../../components/Comments.astro"; import Layout from "../../layouts/PageLayout.astro"; export async function getStaticPaths() { @@ -34,4 +35,5 @@ const { Content, remarkPluginFrontmatter } = await post.render(); </p> </div> <Content /> + <Comments /> </Layout> |